home *** CD-ROM | disk | FTP | other *** search
/ AOL File Library: 9,300 to 9,399 / 9300.zip / AOLDLs / HTML & Web Tools (MAC) / HTML_ MTX Web Publishing Tool / MTX Tool 1.3.sit / MTX Tool 1.3 / guide.mtx < prev    next >
Text File  |  1996-01-22  |  7KB  |  200 lines

  1. %TITLE A Five Minute Guide to MTX
  2. %FILE guide
  3. %LOGO mtxlogo
  4. %IMAGES images/
  5. %VERSION Version 1.3 / Copyright 1996 by the University of Florida
  6. %LOCATION http://www.med.ufl.edu/medinfo/mtx/
  7. %AUTHOR Richard Rathe / rrathe@ufl.edu
  8. %AUTHORURL rrathe@ufl.edu
  9. %MTX 1.3
  10.  
  11. #What is MTX?
  12.  
  13. MTX is a simplified means for creating HyperText Markup Language (HTML) documents. HTML is the page layout standard used by the World Wide Web. Unlike HTML, the MTX format is easy to learn and use. You can use any word processor or text editor to create MTX formatted files. The MTX Tool converts these files into HTML pages in a matter of seconds. Features of the MTX approach include:
  14.  
  15.     Source files are easy to create and maintain 
  16.     No special editor or editing skills are needed
  17.     Timed "make" function for updating HTML files
  18.     Consistent stylistic and functional elements
  19.     Automatic creation of complex HTML elements:
  20.         Document outlines and tables of contents
  21.         Home, Parent, Previous, and Next navigational buttons
  22.         Key Word Indexes Across Families of Documents
  23.         Several types of interactive questions with feedback
  24.         Tables, floating graphics, and other extensions
  25.         Presentation Slides for the Classroom
  26.  
  27. ##How to Start?
  28.  
  29. Create a file using your favorite word processor or editor. The only special requirement is that you save the file as plain text (also known as "generic" or "ASCII"). It is also recommended that each file name end with an ".mtx" extension. You will also need a copy of the "MTX Tool" HyperCard stack to perform the conversion to HTML.
  30.  
  31. ##Converting Your Documents
  32.  
  33. To process your MTX files, follow these steps:
  34.  
  35.     #Create a project by clicking on "New Project".
  36.     #Give your project a descriptive name.
  37.     #Identify the MTX and HTML folders with "Set Folders".
  38.     #Choose a one of the "Make" options:
  39.         Use "Make All" to rebuild the entire project.
  40.         Use "Make Timed" to selectively rebuild the project.
  41.         Use "Make Single" to rebuild individual files.
  42.     #Review the HTML files with your Web browser.
  43.     #Repeat the process as needed.
  44.  
  45. The special "One File" project is useful for small jobs.
  46.  
  47. To delete a project, simply delete its card.
  48.  
  49. Shortcuts:
  50.   Command-N for "New Project"
  51.   Command-M for "Make Timed" and "Make File"
  52.  
  53. #Document Structure
  54.  
  55. ##Special Information
  56.  
  57. MTX files begin with one or more lines of special information about the document. Each of these lines begin with a percent (%) sign and an identifier. A simple file might contain the following:
  58.  
  59. =    %TITLE Sample WWW File
  60. =    %FILE sample
  61. =    %AUTHOR John Doe
  62.  
  63. These lines specify that the document will be titled "Sample WWW File," that the file's name will be "sample.html," and that the author credit at the bottom of the page will be "John Doe."
  64.  
  65. ##Headings
  66.  
  67. You may add structure to a document by using headings. A heading is usually displayed in a larger, bold font. To create a heading simply add a pound (#) sign before the heading text. Two pound signs specify a sub heading and so on. Here is an example:
  68.  
  69. =    #Introduction
  70. =    ##Objectives
  71. =    Some text...
  72. =    ##Background
  73. =    Some text...
  74. =    #Methods
  75. =    More text and headings...
  76. =    #Results
  77. =    etc...
  78.  
  79. ##Outline Style
  80.  
  81. By default, MTX will automatically place a table of contents listing all major headings at the top of the document:
  82.  
  83. Introduction | Methods | Results | etc...
  84.  
  85. Clicking on these items will allow your readers to jump directly to the desired section. If your document is more complex you can opt for a longer, hierarchical outline:
  86.  
  87.     Introduction
  88.         Objectives
  89.         Background
  90.     Methods
  91.         Hardware
  92.         Software
  93.             Prototypes
  94.             Final Version
  95.     Results
  96.     etc...
  97.  
  98. To select longer outlines add this special information line to the top of your document:
  99.  
  100. =    %OUTLINE long
  101.  
  102. You may also choose to suppress all outlining with the line:
  103.  
  104. =    %OUTLINE none
  105.  
  106. #Special Formatting
  107.  
  108. ##Text Style
  109.  
  110. You can control the style of text in your documents. To make text {*bold*} surround it with the "▓*" and "*│" symbols. The symbols "▓!" and "!│" indicate {!italics!}. Examples follow:
  111.  
  112. =    This is an ▓!italic!│ word.
  113. =    These are some ▓*bold words*│.
  114.  
  115. ##Making a List
  116.  
  117. Lists are very useful in any document whenever you have a series of items to display. MTX treats any line with leading tabs or spaces as part of a list. For example:
  118.  
  119. =    This is a simple list:
  120. =        one
  121. =        two
  122. =        three
  123.  
  124. The lines one, two, and three will appear indented with bullets on most systems.
  125.  
  126. This is a simple list:
  127.     one
  128.     two
  129.     three
  130.  
  131. ##Placing a Graphic
  132.  
  133. MTX supports several graphics constructs. For example, to place a GIF format graphics file directly in a document use:
  134.  
  135. =    ▓=picture=│
  136.  
  137. The HTML document will contain an in line graphic taken from a file called "picture.gif."
  138.  
  139. {=picture=}
  140.  
  141. To place a graphic such as a small thumbnail and link it to a larger, full screen image use the construct:
  142.  
  143. =    ▓+picture+│
  144.  
  145. The HTML document will contain an in line graphic "picture.gif." Clicking on this graphic will jump the reader to a larger graphic named "picture.jpg." JPG is short for JPEG a popular compressed graphics format. It is important to point out that ".gif" and ".jpg" are added automatically; you do not need to type them.
  146.  
  147. {+picture+}
  148.  
  149. You can also add a title graphic by including another line of special information at the top of the file:
  150.  
  151. =    %LOGO picture
  152.  
  153. ##Adding Hot Links
  154.  
  155. It is possible to link HTML documents in several ways. The simplest case is a word or words that are linked to another HTML file. The words are said to be "hot" and are displayed in a different color on the screen. Here is an example link:
  156.  
  157. =    This is ▓#an example#example.html#│ of a link.
  158.  
  159. The words "{#an example#example.html#}" will be hot and clicking on them will take the reader to a file called "example.html."
  160.  
  161. ##Questions and Answers
  162.  
  163. MTX includes several question and answer formats. Each question is preceded by a question mark (?) and a letter or letters denoting the correct answer. Each answer is preceded by an "at" sign (@). Each answer may have one or more feedback lines associated with it. These lines are each indented with a tab or a space. For example:
  164.  
  165. =    ?c
  166. =
  167. =    What color is the sky?
  168. =
  169. =    @Red
  170. =        You should know better.
  171. =    @Green
  172. =        Trees are green.
  173. =    @Blue
  174. =        I knew you could do it!
  175. =    @Yellow
  176. =        No Way!
  177.  
  178. Here is the simple interactive question shown above:
  179.  
  180. ?c
  181.  
  182. What color is the sky?
  183.  
  184. @Red
  185.     You should know better.
  186. @Green
  187.     Trees are green.
  188. @Blue
  189.     I knew you could do it!
  190. @Yellow
  191.     No Way!
  192.  
  193. #MTX Format Summary#format.txt
  194.  
  195. #MTX User's Manual#mtxdocs/index.html
  196.  
  197. #Author and Copyright
  198.  
  199. MTX was developed by {#Richard Rathe, MD#http://www.med.ufl.edu/medinfo/people/rathe.html#}, Director of the {#Office of Medical Informatics#http://www.med.ufl.edu/medinfo/#} for the College of Medicine at the University of Florida. {*The MTX format, documentation, and tools are Copyright 1995 and 1996 by the University of Florida.*} MTX is available without charge for non-commercial use at {#http://www.med.ufl.edu/medinfo/mtx/##}. All copyright and authorship notices must remain in place.
  200.